XCSP3 Competition Compatibility #583
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: VS Code Extension | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
jobs: | |
vscode-extension: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linter | |
run: npm run vscode:lint | |
continue-on-error: true | |
- name: Build VS Code extension | |
run: npm run vscode:build | |
continue-on-error: true | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: tree-sitter | |
path: | | |
editors/code |